Full reference: Line breaks
Rules for breaking text into paragraphs and paragraphs into separate lines are quite simple:
paragraph starts after a blank line;
new line in a paragraph starts after a line break (soft break) or a triple dash (---) (forced break).
Forced break needs 3 or more dashes and can be suppounded by spaces for better source code look – however, don’t put it on a separate line because in this case it’ll be treated as a horizontal rule:
Do not do it like
---
this, do like---this
or like --- this (with
spaces around) instead.
Do not do it like
this, do like
this
or like
this (with
spaces around) instead.